3D Graphics Programming with QuickDraw 3D 1.5.4
Previous | QD3D Book | Overview | Chapter Contents | Next |
You can pass the gestaltQD3D selector to the Gestalt function to determine information about the availability of QuickDraw 3D.
enum {
gestaltQD3D = 'qd3d'
}
Gestalt returns information to you by returning a long word in the response parameter. Currently, the returned values are defined by constants:
enum {
gestaltQD3DNotPresent = 0,
gestaltQD3DAvailable = 1
}
You can pass the gestaltQD3DVersion selector to the Gestalt function to determine the installed version of QuickDraw 3D.
enum {
gestaltQD3DVersion = 'q3v '
}
Gestalt returns version information in the response parameter.
Previous | QD3D Book | Overview | Chapter Contents | Next |